home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_400
/
406_01
/
atoc
/
comment.c
< prev
next >
Wrap
Text File
|
1993-11-09
|
677b
|
26 lines
/*=========================================================================
ATOC comment module
=========================================================================*/
#include <stdio.h>
#include "atoc.h"
/*-------------------------------------------------------------------------
comment( s ) replaces any / / style comments with a standard one.
-------------------------------------------------------------------------*/
comment( s )
char *s;
{
char *cp, *strstr();
if ( ( cp = strstr( s, "//" ) ) != NULL )
{
*( cp + 1 ) = '*';
strcat( cp, " */" );
}
}
/*=======================================================================*/